home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / bin / timed-read < prev    next >
Text File  |  1995-07-21  |  201b  |  7 lines

  1. #!/usr/skunk/bin/expect -f
  2. # read a complete line from stdin
  3. # aborting after the number of seconds (given as an argument)
  4. # - Don Libes
  5. set timeout $argv
  6. expect -re \n {send_user $expect_out(buffer)}
  7.